how to get a list of files in a folder in python with pathlib

39

from os import listdir
file_list = listdir(folder_path)

Comments

Submit
0 Comments